home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue38
/
BuildPro
/
COMMON UNITS
/
Debug.pas
< prev
Wrap
Pascal/Delphi Source File
|
1998-04-21
|
303b
|
14 lines
unit Debug;
interface
const
// Define constant DebugOn to be true if debug info is on.
DebugOn = {$IFOPT D+} True {$ELSE} False {$ENDIF};
// Define constant AssertionOn to be true if assertions are on.
AssertionsOn = {$IFOPT C+} True {$ELSE} False {$ENDIF};
implementation
end.